home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
ISSUE23
/
CLINIC
/
NEWMSG.DPR
< prev
next >
Wrap
Text File
|
1997-04-25
|
192b
|
14 lines
program NewMsg;
uses
Forms,
NewMsgU in 'NewMsgU.pas' {Form1},
MsgDlgs in 'MsgDlgs.pas';
{$R *.RES}
begin
Application.CreateForm(TForm1, Form1);
Application.Run;
end.